home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xvmines-.0 / xvmines- / xvmines-1.0 / Imakefile < prev    next >
Makefile  |  1993-06-27  |  474b  |  23 lines

  1. WHERE :sh = (tmp=`echo /usr/openwin`;echo ${OPENWINHOME:=$tmp})
  2.  
  3. #CC = gcc
  4. CC = cc 
  5. INCLUDES = -I${WHERE}/include
  6. LOCAL_LIBRARIES = -L${WHERE}/lib
  7.  
  8. SYS_LIBRARIES = -lxview -lolgx -lX11 -lm
  9.  
  10. #Add -Bstatic for static linking:
  11. #SYS_LIBRARIES = -Bstatic -lxview -lolgx -lX11 -lm
  12.  
  13. SRCS = xvmines.c play.c
  14. OBJS = xvmines.o play.o
  15.  
  16. #CDEBUGFLAGS = -g
  17. CDEBUGFLAGS = -O4 
  18.  
  19. ComplexProgramTarget(xvmines)
  20.  
  21. xvmines.o: xvmines.c xvmines.h xvmines.icons version.h
  22. play.o: play.c xvmines.h
  23.